home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Interactive 7
/
PC World Interactive 7.iso
/
program
/
cprog.EXE
/
CC_1.ZIP
/
STRNCPY.C
< prev
next >
Wrap
Text File
|
1988-02-01
|
512b
|
12 lines
/*
** copy s2 to s1, truncating or null padding as necessary to create a string
** n characters long
*/
strncpy(s1, s2, n) char *s1, *s2; int n; {
char *strncpy;
strncpy = s1;
while(n--) if(!(*s1++ = *s2++)) break;
while(n-- > 0) *s1++ = 0;
return strncpy;
}